home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’96 / O Boy / Source / ComputerAETE_da.cp < prev    next >
Encoding:
Text File  |  1996-06-21  |  953 b   |  48 lines  |  [TEXT/R*ch]

  1. #pragma once on
  2. /*
  3.     ComputerAETE_da.h
  4.     © Bob Boylan 1996
  5.     
  6.     Revision History
  7.     MacHack 1996        initial creation
  8. */
  9. #include "ComputerAETE_da.h"
  10.  
  11. #include <ASRegistry.h>
  12.  
  13. //    -----------------------------------------------------------------
  14. //    ctor
  15. //
  16. ComputerAETE_da::ComputerAETE_da()
  17. {}
  18.  
  19.  
  20. //    -----------------------------------------------------------------
  21. //    dtor
  22. //
  23. ComputerAETE_da::~ComputerAETE_da()
  24. {}
  25.     
  26.  
  27. //    -----------------------------------------------------------------
  28. //    GetProperties
  29. //
  30. vector<Prop_da>
  31. ComputerAETE_da::GetProperties( const DescType inClassID )
  32. {
  33. vector<Prop_da>    theRetVal;// we have none
  34.     return theRetVal;
  35. }
  36. //    -----------------------------------------------------------------
  37. //    GetElements
  38. //
  39. vector<Elem_da>
  40. ComputerAETE_da::GetElements( const DescType inClassID )
  41. {
  42. vector<Elem_da>    theRetVal;
  43.     Elem_da    theEle;
  44.     theEle._ID = cFinderProcess;    // we just hold processes
  45.     theRetVal.push_back( theEle );
  46.     return theRetVal;
  47. }
  48.